POST
/
v1
/
public
/
runtime
/
sessions
/
{sessionId}
/
system-events
Inject a [SYSTEM] event into a live runtime session
curl --request POST \
  --url https://api.talkzilla.app/v1/public/runtime/sessions/{sessionId}/system-events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "data": {
    "event_id": "evt_...",
    "topic": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Tenant-managed API tokens minted under Settings → Developer API. Scopes are api.read for GETs and api.write for mutating calls.

Path Parameters

sessionId
string
required
Example:

"rs_01H..."

Body

application/json
kind
enum<string>
required
Available options:
notify,
end-session
message
string

Required when kind=notify; max 4000 chars.

Maximum string length: 4000

Response

Event accepted; will be applied on the next consumer cycle.

data
object